home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 264_01 / wc.doc < prev   
Text File  |  1980-01-01  |  384b  |  18 lines

  1. WC
  2.  
  3. Purpose
  4. word count
  5.  
  6. Syntax
  7. wc [-lwc] [file...]
  8.  
  9. Comments
  10. Wc counts the lines, words, and characters in the named files, or in the
  11. standard input if no files are specified.  Words are delimited by
  12. spaces, tabs, or newlines.  The default action is -lwc. 
  13.  
  14. Options
  15. -l      display number of lines
  16. -w      display number of words
  17. -c      display number of characters
  18.